home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / libx11 / libx11 / xaw.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  2KB  |  153 lines

  1. /* Copyright (c) 1997 by A BIG Corporation.  All Rights Reserved */
  2.  
  3. /***
  4.    NAME
  5.      xaw
  6.    PURPOSE
  7.      
  8.    NOTES
  9.      
  10.    HISTORY
  11.      Terje Pedersen - Mar 1, 1997: Created.
  12. ***/
  13.  
  14. #define XLIB_ILLEGAL_ACCESS 1
  15.  
  16. #include <X11/X.h>
  17. #include <X11/Xlib.h>
  18. #include <X11/Xutil.h>
  19. #include <X11/Intrinsic.h>
  20. #include <X11/IntrinsicP.h>
  21. #include <X11/CoreP.h>
  22.  
  23. #include <X11/Xmu/WidgetNode.h>
  24. #include <X11/Xaw/AllWidgets.h>
  25. #include <X11/Xaw/List.h>
  26. #include <X11/Xaw/Text.h>
  27. #include <X11/Xaw/TextSrc.h>
  28.  
  29. #include <stdio.h>
  30.  
  31. int pannerWidgetClass;
  32. int portholeWidgetClass;
  33. int panedWidgetClass;
  34. WidgetClass widgetClass;
  35.  
  36. XawInitializeWidgetSet()
  37. {
  38. }
  39.  
  40. XtPointer
  41. XawToggleGetCurrent( Widget radio_group )
  42. {
  43. #if (DEBUGXEMUL_ENTRY) || (DEBUGXEMUL_WARNING)
  44.   printf("WARNING: XawToggleGetCurrent\n");
  45. #endif
  46.   return(0);
  47. }
  48.  
  49. void
  50. XawToggleUnsetCurrent( Widget radio_group )
  51. {
  52. #if (DEBUGXEMUL_ENTRY) || (DEBUGXEMUL_WARNING)
  53.   printf("WARNING: XawToggleUnsetCurrent\n");
  54. #endif
  55.   return(0);
  56. }
  57.  
  58. void
  59. XawListHighlight( Widget w, int item )
  60. {/*        File 'fontSelect.o'*/
  61. #if (DEBUGXEMUL_ENTRY) || (DEBUGXEMUL_WARNING)
  62.   printf("WARNING: XawListHighlight\n");
  63. #endif
  64.   return(0);
  65. }
  66.  
  67. void
  68. XawListChange( Widget w,
  69.            String* list,
  70.            int nitems,
  71.            int longest,
  72.            int resize )
  73. {
  74. #if (DEBUGXEMUL_ENTRY) || (DEBUGXEMUL_WARNING)
  75.   printf("WARNING: XawListChange\n");
  76. #endif
  77.   return(0);
  78. }
  79.  
  80. XawListReturnStruct*
  81. XawListShowCurrent(Widget w )
  82. {
  83. #if (DEBUGXEMUL_ENTRY) || (DEBUGXEMUL_WARNING)
  84.   printf("WARNING: XawListShowCurrent\n");
  85. #endif
  86.   return(0);
  87. }
  88.  
  89. void
  90. XawTextEnableRedisplay( Widget w )
  91. {
  92. }
  93.  
  94. void
  95. XawTextDisableRedisplay( Widget w )
  96. {
  97. }
  98.  
  99. XawTextPosition
  100. XawTextSourceScan( Widget w,
  101.            XawTextPosition position,
  102. #if NeedWidePrototypes
  103.            int type,
  104.            int dir,
  105. #else
  106.            XawTextScanType type,
  107.            XawTextScanDirection dir,
  108. #endif
  109.            int count,
  110. #if NeedWidePrototypes
  111.            int include
  112. #else
  113.            Boolean include
  114. #endif
  115. )
  116. {
  117. }
  118.  
  119. Widget
  120. XawTextGetSource( Widget w )
  121. {
  122. }
  123.  
  124. void
  125. XawTextSetInsertionPoint( Widget w,
  126.               XawTextPosition position )
  127. {
  128. }
  129.  
  130. void
  131. XawFormDoLayout( Widget w,
  132. #if NeedWidePrototypes
  133.          int do_layout
  134. #else
  135.          Boolean do_layout
  136. #endif
  137. )
  138. {
  139. }
  140.  
  141. char*
  142. XawDialogGetValueString( Widget w )
  143. {
  144. }
  145.  
  146. int
  147. XawTextReplace( Widget        w,
  148.             XawTextPosition    start,
  149.             XawTextPosition    end,
  150.             XawTextBlock*    text)
  151. {
  152. }
  153.